home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 9
/
FM Towns Free Software Collection 9.iso
/
taropyon
/
silib
/
inc
/
egb_gra.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS (detected)
UTF-8
Wrap
C/C++ Source or Header
|
1994-11-16
|
326 b
|
15 lines
/* EGB グラフィックオペレーション */
#ifndef _EGB_GRA_H
#define _EGB_GRA_H
#define _EGB_RECTANGLE(_x1,_y1,_x2,_y2) { \
struct \
{ short x1, y1, x2, y2; \
} para; \
para.x1 = (_x1); para.y1 = (_y1); \
para.x2 = (_x2); para.y2 = (_y2); \
EGB_rectangle( EgbPtr,(char *)¶); \
}
#endif